All files / web/src/app/api/admin/blog/[slug]/embeds route.ts

0% Statements 0/63
0% Branches 0/1
0% Functions 0/1
0% Lines 0/63

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64                                                                                                                               
import fs from 'fs'
import path from 'path'
import { NextResponse } from 'next/server'
import { withAuth } from '@/lib/auth/withAuth'

const embedsDirectory = path.join(process.cwd(), 'content', 'blog', 'embeds')

/**
 * GET /api/admin/blog/[slug]/embeds
 *
 * Returns the embed config JSON for a blog post.
 */
export const GET = withAuth(
  async (_request, { params }) => {
    const { slug } = (await params) as { slug: string }
    const filePath = path.join(embedsDirectory, `${slug}.json`)

    if (fs.existsSync(filePath)) {
      try {
        const config = JSON.parse(fs.readFileSync(filePath, 'utf8'))
        return NextResponse.json({ config })
      } catch {
        return NextResponse.json({ config: {} })
      }
    }

    return NextResponse.json({ config: {} })
  },
  { role: 'admin' }
)

/**
 * PUT /api/admin/blog/[slug]/embeds
 *
 * Saves the full embed config JSON for a blog post.
 */
export const PUT = withAuth(
  async (request, { params }) => {
    const { slug } = (await params) as { slug: string }

    let body: { config: Record<string, unknown> }
    try {
      body = await request.json()
    } catch {
      return NextResponse.json({ error: 'Invalid JSON' }, { status: 400 })
    }

    if (typeof body.config !== 'object' || body.config === null) {
      return NextResponse.json({ error: 'config field required' }, { status: 400 })
    }

    // Ensure directory exists
    if (!fs.existsSync(embedsDirectory)) {
      fs.mkdirSync(embedsDirectory, { recursive: true })
    }

    const filePath = path.join(embedsDirectory, `${slug}.json`)
    fs.writeFileSync(filePath, JSON.stringify(body.config, null, 2) + '\n', 'utf8')

    return NextResponse.json({ success: true })
  },
  { role: 'admin' }
)